home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / libs / ctask22d / tprt.bc < prev    next >
Text File  |  1992-12-21  |  730b  |  27 lines

  1. #
  2. #  --- Version 2.2 92-05-15 16:07 ---
  3. #  CTask sample applications Make-File for Borland's make.
  4. #  Application: TPRT.C
  5. #
  6. #    "reqopt" contains required options, and shouldn't normally be changed.
  7. #    "optopt" lists optional optimization options, and may be changed.
  8. #    "model"  is the memory model letter to use (all except Tiny & Huge).
  9. #    "lib"    is the Turbo C library path
  10. #
  11. reqopt=-c -N- -a- -u -K
  12. optopt=-d -G -O -k- -w
  13. !if !$d(model)
  14. model=l
  15. !endif
  16. ctlib=ctasktc
  17.  
  18. .c.obj:
  19.    bcc $(reqopt) $(optopt) -m$(model) $*.c
  20.  
  21. tprt.exe:     tprt.obj $(ctlib).lib ctsuptc$(model).lib
  22.    tlink /m c0$(model) $*,$*,$*,ctsuptc$(model) $(ctlib) c$(model)
  23.  
  24. tprt.obj:     tprt.c tsk.h sio.h tskconf.h
  25.  
  26.